home *** CD-ROM | disk | FTP | other *** search
/ SGI Varsity Update 1998 August / SGI Varsity Update 1998 August.iso / dist / dist6.5 / il_dev.idb / usr / include / il2.5 / ilRoiImg.h.z / ilRoiImg.h
C/C++ Source or Header  |  1998-07-29  |  3KB  |  77 lines

  1. #if 0 
  2.  
  3.     Copyright (c) 1991 SGI   All Rights Reserved
  4.     THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF SGI
  5.     The copyright notice above does not evidence any
  6.     actual or intended publication of such source code,
  7.     and is an unpublished work by Silicon Graphics, Inc.
  8.     This material contains CONFIDENTIAL INFORMATION that
  9.     is the property of Silicon Graphics, Inc. Any use,
  10.     duplication or disclosure not specifically authorized
  11.     by Silicon Graphics is strictly prohibited.
  12.     
  13.     RESTRICTED RIGHTS LEGEND:
  14.     
  15.     Use, duplication or disclosure by the Government is
  16.     subject to restrictions as set forth in subdivision
  17.     (c)(1)(ii) of the Rights in Technical Data and Computer
  18.     Software clause at DFARS 52.227-7013, and/or in similar
  19.     or successor clauses in the FAR, DOD or NASA FAR
  20.     Supplement.  Unpublished- rights reserved under the
  21.     Copyright Laws of the United States.  Contractor is
  22.     SILICON GRAPHICS, INC., 2011 N. Shoreline Blvd.,
  23.     Mountain View, CA 94039-7311
  24.  
  25. #endif
  26. /*
  27.     ilRoiImg is derived from the base ilImage class. This class is used
  28.     to associate an ilRoi class with an ilImage class.
  29. */
  30.  
  31. #ifndef _ilRoiImg_h_
  32. #define _ilRoiImg_h_
  33.  
  34. #include <il2.5/ilImage.h>
  35. #include <il2.5/ilRoi.h>
  36.  
  37. class ilRoiImg : public ilImage {
  38.  
  39. public:
  40.     ilDeclareDerivedClass
  41.     ~ilRoiImg();
  42.  
  43.     // external api: begin
  44.     ilRoiImg(ilImage *Img, ilRoi *Roi, ilPixel &bkgd, int xoffset = 0, int yoffset = 0);
  45.  
  46.     ilRoi* getRoi() { return roi; }
  47.     void getBkgd(ilPixel &bkg) { bkg = bval; }
  48.     void setRoi(ilRoi *Roi, int xoffset = 0, int yoffset = 0);
  49.     void setBkgd(ilPixel &bkgd) { bval = bkgd; setAltered(); }
  50.     // external api: end
  51.  
  52.     ilStatus getSubTile3D(int x, int y, int z, int nx, int ny, int nz,
  53.                           void *data, int dx, int dy, int dz, 
  54.                           int dnx, int dny, int dnz, 
  55.                           const ilConfig* config=NULL);
  56.  
  57.     ilStatus setSubTile3D(int x, int y, int z, int nx, int ny, int nz,
  58.                           void *data, int dx, int dy, int dz, 
  59.                           int dnx, int dny, int dnz, 
  60.                           const ilConfig* config=NULL);
  61.               
  62. protected:
  63.  
  64.     void reset();
  65.     
  66. private:
  67.  
  68.     ilRoi* roi;                // XXX: IL2.3 binary compatibility
  69.     int roiXoffset, roiYoffset;
  70.     ilTile roiBox;
  71.     ilPixel bval;
  72.     void init(ilImage *src, ilRoi *Roi, ilPixel &bkgd, int xoffset, int yoffset);
  73.     void setStride(ilOrder o, int nx, int ny, int nz, int nc, int &xs, int &ys, int &zs, int &cs);
  74.  
  75. };
  76. #endif
  77.